Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / ObservableSortedDictionary<TKey,TValue> Class / Add Method
The key of the element to add.
The value of the element to add. The value can be null for reference types.

In This Topic
    Add Method (ObservableSortedDictionary<TKey,TValue>)
    In This Topic
    Adds an element with the specified key and value into the ObservableSortedDictionary<TKey,TValue>.
    Syntax
    'Declaration
     
    Public Sub Add( _
       ByVal key As TKey, _
       ByVal value As TValue _
    ) 
    public void Add( 
       TKey key,
       TValue value
    )

    Parameters

    key
    The key of the element to add.
    value
    The value of the element to add. The value can be null for reference types.
    See Also